home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Ver Disp 14.xpl < prev    next >
Text File  |  2003-11-19  |  2KB  |  66 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="5"
  4. "UIPATH"="Information\CPU Information"
  5. "NAME"="CPU Licensing"
  6. "OSVERSION"="0101011"
  7. "VERSION"="1.02"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Licensed CPUs"
  10. "TEXT 2"="Registered CPUs"
  11. "TEXT 3"="CPUs Detected"
  12. "TEXT 4"="Current OS"
  13. "TEXT 5"="CPU Type"
  14. "DESCRIPTION 1"="This plug-in displays how many CPUs your version of Windows has detected and supports. It shows the maximum number your version of Windows supports/allows, and how many are detected by Windows.  It also shows which architecture your"
  15. "DESCRIPTION 2"="system uses (example: x86).  Windows NT, 2000 and XP all report 'Windows_NT' for the OS. You can't change anything!!!"
  16. "AUTHOR"="Xteq Systems (CptSiskoX)"
  17. "CONTACTURL"="http://www.xteq.com"
  18. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  19. "COMMENT 1"=" "
  20.  
  21.  
  22. sP="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\"
  23. sV1="LicensedProcessors"
  24. sV2="RegisteredProcessors"
  25. SP2="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment\"
  26. sV3="NUMBER_OF_PROCESSORS"
  27. sV4="OS"
  28. sV5="PROCESSOR_ARCHITECTURE"
  29.  
  30. Sub Plugin_Initialize 
  31.  if GetWinVer=2 or GetWinVer=4 or GetWinVer=6 then
  32.     s=RegReadValue(sP & sV1)
  33.     Call SetUIElement(1,s)
  34.  
  35.     s=RegReadValue(sP & sV2)
  36.     Call SetUIElement(2,s)
  37.  
  38.     s=RegReadValue(sP2 & sV3)
  39.     Call SetUIElement(3,s)
  40.  
  41.     s=RegReadValue(sP2 & sV4)
  42.     Call SetUIElement(4,s)
  43.  
  44.     s=RegReadValue(sP2 & sV5)
  45.     Call SetUIElement(5,s)
  46.  else
  47.     Call SetUIElement(1,"N/A")
  48.     Call SetUIElement(2,"N/A")
  49.     Call SetUIElement(3,"N/A")
  50.     Call SetUIElement(4,"N/A")
  51.     Call SetUIElement(5,"N/A")
  52.  end if
  53.  
  54.  
  55.  Call Disable 'user can't change anything!
  56. End Sub
  57.  
  58. Sub Plugin_CheckData(ElementIndex)
  59. End Sub
  60.  
  61. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  62. End Sub
  63.  
  64. Sub Plugin_Terminate 
  65. End Sub
  66.